Go to the first, previous, next, last section, table of contents.


C. How to make the Amiga more stable

Do your programs crash with a Guru 4 (Instruction error) or $1000005 (Memory corrupt) ab?

The reason could be a too small stack. Every System has a different stack usage, because different programs run in the background, and change system-routines.

If several programs change the same system-routines, this may result in an stack overflow

Even if only one program changes a system-routine and doesn't use stack itself, there are at least 4 Bytes used.

Luckily there is StackAttack, Which gives almost every program a little more stack.

example installation in the `s:Startup-Sequence':

StackAttack ADDSTACK=512


Go to the first, previous, next, last section, table of contents.